home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 November / PCWNOV08.iso / Software / Freeware / Mini Map Sidebar 0.3 / mini_map_sidebar-0.3.0-fx.xpi / chrome / content / editKmlDlg.xul < prev    next >
Encoding:
Extensible Markup Language  |  2008-02-20  |  1.5 KB  |  60 lines

  1. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  2. <!DOCTYPE dialog SYSTEM "chrome://minimap/locale/addressDlg.dtd" >
  3.  
  4. <dialog id="addAddress"
  5.                 title = "&minimap.addaddress.dialogEditKML;"
  6.                 xmlns:html="http://www.w3.org/1999/xhtml"
  7.                 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.                 minwidth="320"
  9.                 onload="onLoad();"
  10.                 ondialogaccept="return onAccept();"
  11.                 ondialogcancel="return onCancel();"
  12.                 button="accept,cancel">
  13.  
  14.  
  15. <script type="application/x-javascript">
  16. var $ = function(x) { return    document.getElementById(x); }
  17.  
  18. var gParams;
  19.  
  20. function onLoad() {
  21.     gParams    = window.arguments[0];
  22.     $('bpaddaddress-title').value = gParams.title; 
  23.     $('bpaddaddress-url').value = gParams.url;
  24. }
  25.  
  26. function onCancel() {
  27.     gParams.cancelled = true;
  28.     return true;
  29. }
  30.  
  31. function onAccept() {
  32.     //dump("insertImage.onAccept()\n");
  33.     gParams.title = $('bpaddaddress-title').value;
  34.     gParams.url = $('bpaddaddress-url').value;
  35.     return true;
  36. }
  37.  
  38. </script>
  39.     <groupbox>
  40.         <caption label="&minimap.addaddress.descriptionEditKML;"/>
  41.         <grid>
  42.             <columns>
  43.                 <column/>
  44.                 <column flex="1"/>
  45.             </columns>
  46.             <rows>
  47.                 <row align="center">
  48.                     <description value="&minimap.addaddress.title;"/>
  49.                     <textbox id="bpaddaddress-title" value=""/>
  50.                 </row>
  51.                 <row align="center">
  52.                     <description value="&minimap.addaddress.urlKML;"/>
  53.                     <textbox id="bpaddaddress-url" value=""/>
  54.                 </row>
  55.             </rows>
  56.         </grid>
  57.         <separator height="5px"/>
  58.     </groupbox>
  59. </dialog>
  60.